(struct Lisp_Process): Declare bit field as unsigned.
authorAndreas Schwab <schwab@suse.de>
Sat, 8 Mar 2008 15:55:51 +0000 (15:55 +0000)
committerAndreas Schwab <schwab@suse.de>
Sat, 8 Mar 2008 15:55:51 +0000 (15:55 +0000)
src/ChangeLog
src/process.h

index 26362e6b719be6fa8c3a268818b693d1eb013c0e..a4cb8a78d3ac362f58b079fda34d7d8c2086c475 100644 (file)
@@ -1,3 +1,7 @@
+2008-03-08  Andreas Schwab  <schwab@suse.de>
+
+       * process.h (struct Lisp_Process): Declare bit field as unsigned.
+
 2008-03-07  Stefan Monnier  <monnier@iro.umontreal.ca>
 
        * fileio.c (Fsubstitute_in_file_name): Fix up computation of maximum
index 7a212245724732ad74ef960d108a39b00316508e..3be8686b830c244ff3c63346942d83102380280e 100644 (file)
@@ -123,7 +123,7 @@ struct Lisp_Process
        This is to avoid consing in a signal handler.  The `raw_status_new'
        flag indicates that `raw_status' contains a new status that still
        needs to be synced to `status'.  */
-    int raw_status_new : 1;
+    unsigned int raw_status_new : 1;
     int raw_status;
 };